How is Object[] cloneable

Posted by java_geek on Stack Overflow See other posts from Stack Overflow or by java_geek
Published on 2010-04-12T10:06:13Z Indexed on 2010/04/12 10:13 UTC
Read the original article Hit count: 117

Filed under:
|
|
|

Object[] o = new Object[]{};

System.out.println(o instanceof Cloneable);

This gives true as o/p. I could not understand why?

© Stack Overflow or respective owner

Related posts about java

Related posts about cloneable